/** * Author: Simon-Pierre Boucher * Contact: contact@spboucher.ai * Project: Hilmacorp.ai — Web Platform * File: app/[locale]/[...rest]/page.tsx * Description: Catch-all route delegating unknown paths to the locale-aware 404 page */ import { notFound } from "next/navigation"; export default function CatchAll() { notFound(); }